home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / julian11.zip / JULTESTB.MAK < prev    next >
Text File  |  1993-01-11  |  828b  |  57 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +JULTESTB.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\BORLANDC\LIB;C:\BORLANDC\LIB3
  9. INCLUDEPATH = C:\BORLANDC\INCLUDE;C:\INCLUDE3
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  jultest.obj \
  24.  {$(LIBPATH)}julianl.lib
  25.  
  26. #        *Explicit Rules*
  27. jultestb.exe: jultestb.cfg $(EXE_dependencies)
  28.   $(TLINK) /x/c/P-/L$(LIBPATH) @&&|
  29. c0l.obj+
  30. jultest.obj
  31. jultestb
  32.         # no map file
  33. julianl.lib+
  34. emu.lib+
  35. mathl.lib+
  36. cl.lib
  37. |
  38.  
  39.  
  40. #        *Individual File Dependencies*
  41. jultest.obj: jultestb.cfg jultest.c 
  42.  
  43. #        *Compiler Configuration File*
  44. jultestb.cfg: jultestb.mak
  45.   copy &&|
  46. -ml
  47. -v
  48. -vi-
  49. -H=JULTESTB.SYM
  50. -weas
  51. -wpre
  52. -I$(INCLUDEPATH)
  53. -L$(LIBPATH)
  54. | jultestb.cfg
  55.  
  56.  
  57.